home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / compress / gzip06st.zoo / Makefile.st < prev    next >
Makefile  |  1993-01-06  |  438b  |  11 lines

  1. # Very simple makefile for GZIP v0.6 Atari.
  2. # If you want to build GZIP for a normal TOS-filesystem then you should
  3. # add "-DNO_SYMLINK -DNO_MULTIPLE_DOTS -DNO_CHOWN" to CFLAGS.
  4.  
  5. CC = gcc
  6. CFLAGS = -O2 -D__STDC__ -DSTDC_HEADERS -DDIRENT -DHAVE_UNISTD_H -DUTIME -DNEED_MEMORY_H -DHAVE_STRING_H
  7. OBJS = gzip.o zip.o deflate.o trees.o bits.o unzip.o inflate.o util.o crypt.o lzw.o unlzw.o getopt.o alloca.o
  8.  
  9. gzip:    $(OBJS)
  10.     $(CC) -o $@ $(OBJS)
  11.